home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / comm / zest20.zip / ZEST.DOC < prev    next >
Text File  |  1996-08-26  |  4KB  |  106 lines

  1. /*
  2.  
  3.  
  4.  
  5.               ZeST -- the FASTEST Z-modem Protocol from Korea!
  6.  
  7.  
  8.                                 Version 2.0
  9.  
  10.  
  11.                                   08/26/96
  12.  
  13.  
  14.  
  15.  
  16.       (c) 1992, 1996, Hyok-Sung Choi, in MR(Micro Robot Research) circle
  17.             in Korea Advanced Institute of Science and Technology
  18.  
  19.            Internet E-Mail: hschoe@moses.kaist.ac.kr
  20.   Korean Comm. Service, HiTEL: EAGLE (case sensitive!)  Chollian: choehs
  21.  
  22. ------
  23.  
  24.     Hello, there!
  25.  
  26.     This "ZeST" is a Z-Modem Protocol Driver for DOS from KAIST, KOREA.  The
  27.  first version of ZeST was for internal use only, just for fun, in the winter
  28.  ,1992. I didn't have enough time for debugging to distribute the driver,
  29.  because I was only a senior high school student. :)
  30.     After several years, I found this source from in my old hard-drive :),
  31.  for now, I'm sophomore at my college, and it is vacation season, yet!
  32.     From early morning to mid-night, I debug the source, and attached some
  33.  'not-bad' features (ie.speed level meter), to the ZeST.
  34.  
  35.     This is the newest version, 2.0. Bugs fixed, and included new features
  36.  like redefined fonts, palettes, etc. This is for EGA/VGA only for its unique
  37.  fonts and functions. I'm sorry to mono and CGA users.
  38.  
  39.     ZeST is FAST! It's almost codes was coded by ASM, and the rest was by C.
  40.  And supports 16550 FIFO buffer, and speed of the port is up to 115200 baud.
  41.  for command set compatible, the most set is compatible with another popular
  42.  driver (txzm, to say.:). So you can just replace the txzm.exe to zest.exe
  43.  without re-setup.
  44.  
  45.     ZeST is POST-WARE!! So, if you like this program, please leave me a
  46.  message or post me a postcard!
  47.  
  48.     Hyok-Sung Choi
  49.     260-33 SungBuk-Dong SungBuk-Gu
  50.     Seoul, 136-020
  51.     SOUTH KOREA
  52.  
  53.     Thank you for your stop, and enjoy!
  54.  
  55.  Regards,
  56.  Hyok
  57.  
  58. -----
  59.  
  60. - Usage :
  61.  
  62.  (the command set is almost compatible with other driver(ie.:txzm)
  63.  
  64.  recv: zest { {COM#|-c#,#} -b# -l# -t# -d -m -h -i -p -v -e# } -r {directory}
  65.  send: zest { {COM#|-c#,#} -b# -l# -t# -d -m -h -i -p -w# } -s file1 file2 ..
  66.  
  67.     * {..} is optional. and -r or -s switch must come last on the command.
  68.     * the current baud rate is used as default, if it is not specified.
  69.  
  70. - Options :
  71.  
  72.   COM# : COM1 (default), COM2, COM3, COM4
  73.   or -c#,# : base address of comm port in hex,IRQ (2-7)
  74.      Ex> -c2E8,5    ; base address=2E8, IRQ=5  (no spaces in arg)
  75.   -b# : CONNECT baud rate.
  76.   -l# : locked baud rate of fixed DTE link. (up to 115200)
  77.   -t# : 1-16, 16550 FIFO buffer size. (maximum character per interrupt)
  78.         default is 8  (some modems may require lower setting)
  79.   -d  : disable FIFO when 16550 UART detected
  80.   -m  : disable modem status register interrupts
  81.   -h  : use RTS/CTS hardware handshake
  82.   -i  : ignore absence of carrier detect
  83.   -p  : send/accept full pathnames (will create subdirs)
  84.   -v  : disable serial I/O during disk writes
  85.   -e# : duplicate file handling options (default = 1)
  86.      0=skip file, 1=resume transfer, 2=create dup name, 3=overwrite
  87.   -w# : transmit window size (must be multiple of 128)
  88.   -r  : receive,  directory is optional download directory
  89.   -s  : send, file names follow - recurses subdirs of names in parenthensis
  90.  
  91. - Examples :
  92.  
  93. zest com2 -b9600 -h -e2 -r   (COM2, 9600 baud, CTS hndshk, dup name if exist)
  94. zest -l38400 -b14400 -s *.zip (38400 locked rate, 14400 CONNECT, send all ZIPs)
  95. zest -p -s (c:\subdir)       (send all files in all subdirs in c:\subdir)
  96.  
  97. - Notice :
  98.  
  99.   Please don't forget to use flow control, with '-h' option, when you send some
  100.  files.
  101.  
  102. <EOT>
  103.  
  104. */
  105.  
  106.